From: Richard M. Stallman Date: Wed, 26 Jun 2002 08:35:14 +0000 (+0000) Subject: (Fbury_buffer): Use frames_discard_buffer. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~32038 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=15c21da0d08269310cad7fb673499256492b49a6;p=emacs.git (Fbury_buffer): Use frames_discard_buffer. --- diff --git a/src/buffer.c b/src/buffer.c index 6af8b39d3b5..65300cd9827 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1932,7 +1932,10 @@ selected window if it is displayed there. */) XSETCDR (link, Qnil); Vbuffer_alist = nconc2 (Vbuffer_alist, link); - frames_bury_buffer (buffer); + /* Removing BUFFER from frame-specific lists + has the effect of putting BUFFER at the end + of the combined list in each frame. */ + frames_discard_buffer (buffer); } return Qnil;